home *** CD-ROM | disk | FTP | other *** search
/ GameSpot.it / GameSpot Italia (2001).bin / demo / severancedemo / data1.cab / Program_Files / Scripts / Combos / SpdCombos.py < prev    next >
Encoding:
Text File  |  2000-10-13  |  936 b   |  43 lines

  1. ######################################################
  2. #
  3. # Create sets of attacks
  4. #
  5. #        - Spidersmall -
  6. #
  7. ######################################################
  8.  
  9.  
  10. import Bladex
  11.  
  12. ATK_UNIQUE=0
  13. ATK_RANDOM=1
  14. ATK_SEQUENTIAL=2
  15.  
  16.  
  17.  
  18. # Predeclare & link all my combos into ATTACKING action event tables
  19. Bladex.SetActionEventTable("Spd","g_01","ATTACKING")
  20. Bladex.SetActionEventTable("Spd","g_spit","ATTACKING")
  21.  
  22.  
  23. spd=Bladex.GetCharType("Spidersmall","Spd")
  24.  
  25. ###############################
  26. # GRUPOS DE GOLPES ALEATORIOS #
  27. ###############################
  28. #GA group
  29.  
  30. spd.AddAttack("GA","Spd_g_01")
  31. spd.AttackWindow("Spd_g_01",5,15,"GA_Window")
  32. spd.AttackTypeFlag("GA",ATK_UNIQUE)
  33. spd.AddLevels("Spd_g_01",0,0)
  34. spd.AllowAttack("GA","A","","","")
  35.  
  36. #SP group
  37. spd.AddAttack("SP","Spd_spit")
  38. spd.AttackWindow("Spd_spit",5,15,"GA_Window")
  39. spd.AttackTypeFlag("SP",ATK_UNIQUE)
  40. spd.AddLevels("Spd_spit",0,0)
  41.  
  42.  
  43.